{% extends "base.html" %} {% block title %}Тесты{% endblock %} {% block content %}

Управление тестами

Импортировать тест Создать тест
{% if tests %}
{% for test in tests %} {% endfor %}
Название Описание Создан Вопросов Время (мин) Активен
{{ test.title }} {{ test.description|truncate(60, True) if test.description else '' }} {{ test.created_at.strftime('%d.%m.%Y') }} {{ test.questions|length }} {{ test.time_limit_minutes or '—' }} {% if test.is_active %} да {% else %} нет {% endif %}
Редактировать Экспорт в Word Назначить
{% else %}

Тесты не созданы.

{% endif %}
{% endblock %}